home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / gsfont.h < prev    next >
C/C++ Source or Header  |  1996-06-11  |  3KB  |  66 lines

  1. /* Copyright (C) 1989, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsfont.h */
  20. /* Client interface to font operations */
  21. /* Requires gsmatrix.h */
  22.  
  23. /* A 'font directory' object (to avoid making fonts global). */
  24. /* 'directory' is something of a misnomer: this structure */
  25. /* just keeps track of the defined fonts, and the scaled font and */
  26. /* rendered character caches. */
  27. #ifndef gs_font_dir_DEFINED
  28. #  define gs_font_dir_DEFINED    
  29. typedef struct gs_font_dir_s gs_font_dir;
  30. #endif
  31.  
  32. /* Font objects */
  33. #ifndef gs_font_DEFINED
  34. #  define gs_font_DEFINED
  35. typedef struct gs_font_s gs_font;
  36. #endif
  37.  
  38. /* Initialization */
  39. /* These procedures return 0 if they fail. */
  40. gs_font_dir    *gs_font_dir_alloc(P1(gs_memory_t *));
  41. gs_font_dir    *gs_font_dir_alloc_limits(P6(gs_memory_t *,
  42.             uint /*smax*/, uint /*bmax*/, uint /*mmax*/,
  43.             uint /*cmax*/, uint /*upper*/));
  44.  
  45. /* Font manipulations */
  46. /* Use gs_definefont only with original (unscaled) fonts! */
  47. int gs_definefont(P2(gs_font_dir *, gs_font *));
  48. /* gs_scalefont and gs_makefont return 0 if the scaled font */
  49. /* was already in the cache, 1 if a new font was created. */
  50. int    gs_scalefont(P4(gs_font_dir *, const gs_font *, floatp, gs_font **));
  51. int    gs_makefont(P4(gs_font_dir *, const gs_font *, const gs_matrix *, gs_font **));
  52. int    gs_setfont(P2(gs_state *, gs_font *));
  53. gs_font *    gs_currentfont(P1(const gs_state *));
  54. gs_font *    gs_rootfont(P1(const gs_state *));
  55. void    gs_purge_font(P1(gs_font *));
  56.  
  57. /* Font cache parameter operations */
  58. void    gs_cachestatus(P2(const gs_font_dir *, uint [7]));
  59. #define gs_setcachelimit(pdir,limit) gs_setcacheupper(pdir,limit)
  60. uint    gs_currentcachesize(P1(const gs_font_dir *));
  61. int    gs_setcachesize(P2(gs_font_dir *, uint));
  62. uint    gs_currentcachelower(P1(const gs_font_dir *));
  63. int    gs_setcachelower(P2(gs_font_dir *, uint));
  64. uint    gs_currentcacheupper(P1(const gs_font_dir *));
  65. int    gs_setcacheupper(P2(gs_font_dir *, uint));
  66.